home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
idioms.lha
/
idioms
/
2const.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-08
|
286b
|
15 lines
/* Copyright (c) 1992 by AT&T Bell Laboratories. */
/* Advanced C++ Programming Styles and Idioms */
/* James O. Coplien */
/* All rights reserved. */
static const int SIZE1 = 10;
class C {
static const int SIZE2;
char vec1[SIZE1];
// char vec2[SIZE2];
};
const int C::SIZE2 = 10;